home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_05 / allison / date3.h < prev    next >
C/C++ Source or Header  |  1995-03-12  |  266b  |  18 lines

  1. LISTING 7 The Date type in C++
  2. // date3.h
  3.  
  4. struct Date
  5. {
  6.     Date(int, int, int);
  7.     char *format(char *) const;
  8.     int compare(const Date &) const;
  9.  
  10. private:
  11.     int month;
  12.     int day;
  13.     int year;
  14.  
  15.     static const char * month_text[13];
  16. };
  17.  
  18.